USE F90_UNIX
INTEGER,PARAMETER :: CLOCK_TICK_KINDThe integer kind used for clock ticks (see TIMES).
TYPE TMS INTEGER(CLOCK_TICK_KIND) UTIME, STIME, CUTIME, CSTIME END TYPEDerived type holding CPU usage time in clock ticks. UTIME and STIME contain CPU time information for a process, CUTIME and CSTIME contain CPU time information for its terminated child processes. In each case this is divided into user time (UTIME, CUTIME) and system time (STIME, CSTIME).
SUBROUTINE ABORT(message) CHARACTER*(*), OPTIONAL :: messageABORT cleans up the i/o buffers and then terminates execution, producing a core dump on Unix systems. If MESSAGE is given it is written to logical unit 0 (zero) preceded by " abort:".
INTEGER (KIND=CLOCK_TICK_KIND) FUNCTION CLOCK_TICKS_PER_SECOND()Returns the number of clock ticks in one second of CPU time (see TIMES).
SUBROUTINE EXIT(STATUS) INTEGER,OPTIONAL :: STATUSTerminate execution as if executing the END statement of the main program (or an unadorned STOP statement). If STATUS is given it is returned to the operating system (where applicable) as the execution status code.
SUBROUTINE FLUSH(LUNIT) INTEGER,INTENT(IN) :: LUNITFlushes the output buffer of logical unit LUNIT which must be connected for formatted sequential output.
SUBROUTINE GETARG(K,ARG) INTEGER,INTENT(IN) :: K CHARACTER*(*),INTENT(OUT) :: ARGFetches command-line argument number K into ARG. Argument zero is the program name. Note that K must be less than or equal to the value returned by IARGC().
SUBROUTINE GETENV(NAME,VALUE) CHARACTER*(*),INTENT(IN) :: NAME CHARACTER*(*),INTENT(OUT) :: VALUEFetches the value of the environment variable named by NAME into VALUE. If there is no such variable VALUE will be blank.
INTEGER FUNCTION GETGID()Returns the numeric group number of the calling process.
INTEGER FUNCTION GETPID()Returns the process number of the calling process.
INTEGER FUNCTION GETUID()Returns the numeric user number of the calling process.
INTEGER FUNCTION IARGC()Returns the number of command-line arguments. This will be -1 if even the program name is unavailable.
INTEGER(KIND=CLOCK_TICK_KIND) FUNCTION TIMES(BUFFER) TYPE(TMS),INTENT(OUT) :: BUFFERThis function returns the elapsed real time in clock ticks since an arbitrary point in the past, or -1 if the function is unavailable. BUFFER is filled in with CPU time information for the calling process and any terminated child processes.
If this function returns zero the values in BUFFER will still be correct but the elapsed-time timer was not available.
f95(1), intro(3), nag_modules(3).
Please report any bugs found to "support@nag.co.uk" or "infodesk@nag.com", along with any suggestions for improvements.